home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DU Projects / Windoid / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-08-22  |  726 b   |  32 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //    Release Version:    $ ODF 2 $
  3. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  4. //========================================================================================
  5.  
  6. #ifndef FWRESFIL_K
  7. #include "FWResFil.k"
  8. #endif
  9.  
  10. #ifndef DEFINES_K
  11. #include "Defines.k"
  12. #endif
  13.  
  14. #ifndef FWMENUS_FR
  15. #include "FWMenus.fr"
  16. #endif
  17.        
  18. //========================================================================================
  19. resource FW_RMenuBar(kMenuBarID)
  20. {
  21.     "About Windoid...",
  22.     {
  23.         FW_RPullDownMenu 
  24.         (
  25.             "Palette"
  26.             {
  27.                 FW_RToggleItem(cShowHideCommand, 'T', "Show Palette", "Hide Palette")
  28.             }
  29.         )
  30.     }
  31. };  
  32.